#Data for the shops.
#Start a new shop with :Shop String (use String to access the shop)
#Start a new item with :Item String
#List description with description=String
#List cost with cost=Number
#List power with power=Number
#List cost type with buytype=(skill/gold)
#List picture to use with picture=picture_name.png
#If un-listed, data will be taken from the items directory.
#Scripting commands can be entered. The "end" command will prevent the
#item from being bought.

:Shop a Weapons Store
:Item Rusty Knife

#The scripting here does the exact same thing as any of the other entries.
#It is provided for infomative purposes.
:Item Dagger
cost=15
power=2
picture=items/dagger.png
description=A small but useful dagger
buytype=gold
if item dagger | pass | end
info You buy a Dagger.

:Item Short Sword
:Item Bastard Sword
:Item Long Sword
:Item Claymore
:Item Flamberge
:Item Slasher Sword
:Item Flame Sword
:Item Diamond blade

:Shop an Armory
:Item Leather Coif
:Item Chainmail Coif
:Item Helmet
:Item Reinforced Helmet
:Item Leather Gloves
:Item Chainmail Gauntlets
:Item Plate Gauntlets
:Item Leather armor
:Item Chain Breastplate
:Item Leather Leggings
:Item Chainmail Leggings
:Item Steel Plate Boots
:Item Small Shield
:Item Large Shield
:Item Tower Shield

:Shop a General Store
:Item Light healing potion
:Item Healing potion
:Item Super healing potion
:Item Poison bomb
:Item Smoke bomb


:Shop a Training Hall
:Item Rage
cost=1
picture=items/rage.png
buytype=skill
power=-1
description=Gives you increased damage for the rest of a battle
if addskill Rage | pass | end
info You buy the Rage skill.

:Item Sneak Away
cost=1
picture=items/sneak_away.png
buytype=skill
power=-1
description=Attempts to leave a battle.
if addskill Sneak Away | pass | end
info You buy the Sneak Away skill.

:Item Dismember
cost=2
picture=items/bastard_sword.png
buytype=skill
power=-1
description=Your next attack will do maximum damage, and ignore armor
if addskill Dismember | pass | end
info You buy the Dismember skill.

:Item Frenzy
cost=3
picture=items/frenzy.png
buytype=skill
power=-1
description=Your next attack will try to hit more than once
if addskill Frenzy | pass | end
info You buy the Frenzy skill.

:Item Attack Training
cost=1
picture=items/dagger.png
buytype=skill
power=1
description=Training to use your sword more effectively.
give attack 1
info You buy attack training.

:Item Defense Training
cost=1
picture=items/large_shield.png
buytype=skill
power=1
description=Training to use your armor more effectively.
give defense 1
info You buy defense training.
